What is the correct HTML for referring to an external CSS stylesheet? 

1
2
3
1

<link rel="stylesheet" type="text/css" href="mystyle.css"> 

Where in an HTML document is the correct place to refer to an internal style sheet?

1
2
3
2

 In the <head> section

Which HTML attribute is used to define inline styles?

1
2
3
4

Which HTML tag is used to define an internal style sheet?

1
2
3

Which is the correct CSS syntax?

1
2
3
4
3

body {color: black;}

Which is more specific as a selector?

1
2
3